home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PD Collection CD 1
/
PD Collection CD 1.iso
/
programer2
/
euclidlib
/
h_bool
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-08-29
|
162 b
|
10 lines
/**** bool.h ****/
/* Defines 'BOOL' as the boolean type - values TRUE and FALSE.
*/
#ifndef BOOL
#define BOOL int
#define FALSE 0
#define TRUE 1
#endif